home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Mail / pine3.92 / pico / mswinver.c < prev    next >
C/C++ Source or Header  |  1996-03-14  |  1KB  |  65 lines

  1. /*
  2.  * Pico Versions:
  3.  *
  4.  * 1.0.16    Looks for 'mailcap' in the pine home directory.
  5.  *        Slightly more informative error messages when failed to exec
  6.  *        viewer.
  7.  *        Changed the name to PC-Pine and PC-Pico (for Windows).
  8.  *        Tells the user to delete the temp image file.
  9.  * 1.0.17    Added Cut, Copy, and Paste.
  10.  *        Several changes in pine.
  11.  *        Fixed bug with reallocating a NULL block.
  12.  * 1.0.18    Added "Cancel Paste!"
  13.  * 2.4.1    Aligned with pico version numbers.
  14.  * 2.4.2    Support for copy of whole text from pine's text viewer, and
  15.  *        limited amount of text that will be pasted during text
  16.  *        input prompts.
  17.  * 2.4.3    Added printing capability.
  18.  *
  19.  *
  20.  * Pine and Pico are registered trademarks of the University of Washington.
  21.  * No commercial use of these trademarks may be made without prior written
  22.  * permission of the University of Washington.
  23.  * 
  24.  * Pine, Pico, and Pilot software and its included text are Copyright
  25.  * 1989-1996 by the University of Washington.
  26.  * 
  27.  * The full text of our legal notices is contained in the file called
  28.  * CPYRIGHT, included with this distribution.
  29.  */
  30.  
  31.  
  32. #define VER_MAJOR 2
  33. #define VER_MINOR 5
  34. extern char datestamp[];
  35.  
  36.  
  37. /*
  38.  * Return major version number...
  39.  */
  40. int
  41. mswin_majorver()
  42. {
  43.     return(VER_MAJOR);
  44. }
  45.  
  46.  
  47. /*
  48.  * Return minor version number...
  49.  */
  50. int
  51. mswin_minorver()
  52. {
  53.     return(VER_MINOR);
  54. }
  55.  
  56.  
  57. /*
  58.  * Return compilation number...
  59.  */
  60. char *
  61. mswin_compilation_date()
  62. {
  63.     return(datestamp);
  64. }
  65.